Effective Java(10) 发表于 2018-11-15 | 分类于 Java 文章摘要Effective Java第10章 并发 学习笔记 并发66 同步访问共享的可变数据 程序不会终止,后台线程永远在循环。1234567public class StopThread { private static boolean stopRequested; public static void main(String[] args) throws InterruptedException { Thread }} 未完待续